home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 476-500 / disk_489 / mkbmap / makefile < prev    next >
Makefile  |  1992-05-06  |  930b  |  34 lines

  1. # Amiga bitmapped font builder make file (Amiga) - mkbmap V1.0
  2. # This version assumes Lattice make (lmk), C (lc), asm, blink
  3.  
  4. # Debug symbols
  5.  
  6. #LCDBG  = -d0 -O           # no debug,            optimise
  7.  LCDBG  = -d2 -O           # full debugging info, optimise
  8. #LCDBG  = -d3              # full debugging info, flush regs
  9.  
  10. # Default target
  11.  
  12. all:            mkbmap
  13.  
  14. # The archive
  15.  
  16. archive:
  17.     delete mkbmap10.lzh
  18.     lharc -r -S0 a mkbmap10.lzh README mkbmap mkbmap.doc mkbmap.c postlib.h postasm.a makefile isolatin1_encoding.ps ppage_encoding.ps windows_encoding.ps isolatin1oldnum_encoding.ps
  19.  
  20. # Main program
  21.  
  22. mkbmap:         mkbmap.o postasm.o
  23.     blink from lib:c.o mkbmap.o postasm.o to mkbmap lib lib:lc.lib smalldata nodebug
  24.  
  25. # The assembler routines contain FPU instructions
  26.  
  27. postasm.o:      postasm.a
  28.         asm -u -m2 -iinclude: postasm.a
  29.  
  30. # The main program
  31.  
  32. mkbmap.o:       mkbmap.c    postlib.h
  33.         lc $(LCDBG) mkbmap.c
  34.